home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue61 / Clinic / HintEg3U.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  2000-06-28  |  698 b   |  39 lines

  1. unit HintEg3U;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, Windows, Messages, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls, ComCtrls;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     StatusBar1: TStatusBar;
  12.     Edit1: TEdit;
  13.     Button1: TButton;
  14.     CheckBox1: TCheckBox;
  15.     Label1: TLabel;
  16.     Memo1: TMemo;
  17.     RadioButton1: TRadioButton;
  18.     chkSimpleText: TCheckBox;
  19.     procedure chkSimpleTextClick(Sender: TObject);
  20.   private
  21.     { Private declarations }
  22.   public
  23.     { Public declarations }
  24.   end;
  25.  
  26. var
  27.   Form1: TForm1;
  28.  
  29. implementation
  30.  
  31. {$R *.DFM}
  32.  
  33. procedure TForm1.chkSimpleTextClick(Sender: TObject);
  34. begin
  35.   StatusBar1.SimplePanel := chkSimpleText.Checked
  36. end;
  37.  
  38. end.
  39.